/* -- gift_cards -- */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700&display=swap");
#gift-cards { }
  #gift-cards .gift-card-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px; }
  #gift-cards .gift-card-wrapper {
    padding: 20px;
    font-family: 'Open Sans'; }
    #gift-cards .gift-card-wrapper .gift-card {
      position: relative;
      border-radius: 7px;
      overflow: hidden;
      height: 200px;
      box-shadow: 3px 3px 7px 0px #d6d6d6;
      transition: all 0.5s;
      animation: silver-reflection-alt 0.5s forwards;
      max-width: 390px;
      margin: 0 auto; }
      #gift-cards .gift-card-wrapper .gift-card:hover {
        animation: silver-reflection 0.5s forwards;
        box-shadow: 0px 0px 7px 7px #d6d6d6;
        transform: scale(1.1); }
      #gift-cards .gift-card-wrapper .gift-card .gift-card-title {
        transition: all 0.5s;
        position: absolute;
        bottom: 0;
        left: 0;
        font-size: 12px;
        line-height: 21px;
        width: 40px;
        text-align: left;
        margin: 25px;
        margin-left: 35px;
        text-transform: lowercase; }
        #gift-cards .gift-card-wrapper .gift-card .gift-card-title strong {
          margin-left: -15px;
          text-transform: uppercase;
          line-height: 40px;
          font-size: 40px; }
      #gift-cards .gift-card-wrapper .gift-card .gift-card-value {
        font-weight: bold;
        transition: all 0.5s;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 60px;
        width: 100%;
        text-align: right;
        padding: 30px 20px; }
        #gift-cards .gift-card-wrapper .gift-card .gift-card-value:after {
          content: '(';
          position: absolute;
          bottom: -15px;
          right: 55px;
          transform: rotate(270deg);
          font-family: monospace; }
  #gift-cards .gift-card-wrapper {
    /*
  &:nth-child(3){
    .gift-card{
      background-color: #d1d5bd;
      .gift-card-title{
        color:#fff;
      }
      .gift-card-value{
        color:#7f8563;
      }
    }
  }
  &:nth-child(4){
    .gift-card{
      background-color: #7f8563;
      .gift-card-title{
        color:#d1d5bd;
      }
      .gift-card-value{
        color:#fff;
      }
    }
  }
  &:nth-child(5){
    .gift-card{
      background-color: #017074;
      .gift-card-title{
        color:#0d4c53;
      }
      .gift-card-value{
        color:#96fbff;
      }
    }
  }
  &:nth-child(6){
    .gift-card{
      background-color: #0d4c53;
      .gift-card-title{
        color:#017074;
      }
      .gift-card-value{
        color:#fff;
      }
    }
  }*/ }
    #gift-cards .gift-card-wrapper.odd .gift-card {
      background-color: #8fa98b; }
      #gift-cards .gift-card-wrapper.odd .gift-card .gift-card-title, #gift-cards .gift-card-wrapper.odd .gift-card .gift-card-value {
        color: #3a4b37; }
    #gift-cards .gift-card-wrapper.even .gift-card {
      background-color: #455942; }
      #gift-cards .gift-card-wrapper.even .gift-card .gift-card-title, #gift-cards .gift-card-wrapper.even .gift-card .gift-card-value {
        color: #b9cab7; }

@keyframes silver-reflection {
  0% {
    background-size: 100%; }
  100% {
    background-size: 200%; } }

@keyframes silver-reflection-alt {
  0% {
    background-size: 200%; }
  100% {
    background-size: 100%; } }
  @media (max-width: 380px) {
    #gift-cards .gift-card-wrapper .gift-card {
      height: 150px; }
      #gift-cards .gift-card-wrapper .gift-card .gift-card-title strong {
        font-size: 30px; }
      #gift-cards .gift-card-wrapper .gift-card .gift-card-value {
        font-size: 30px;
        padding: 20px 10px; }
        #gift-cards .gift-card-wrapper .gift-card .gift-card-value:after {
          right: 33px; } }
